home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / addstringtostack.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  200b  |  8 lines

  1. #include "kiss.h"
  2.  
  3. void addstringtostack (Stringstack *what, char *newst)
  4. {
  5.     what->str = xrealloc (what->str, (what->nstr + 1) * sizeof (char *));
  6.     what->str [what->nstr++] = xstrdup (newst);
  7. }
  8.